home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 June: Reference Library / Dev.CD Jun 96 RL / Dev.CD Jun 96 RL.toast / Technical Documentation / develop / develop Issue 26 / develop Issue 26 code / Truffles - Display Mgr. / Sprocket / SprocketConditionals.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-01-10  |  1.3 KB  |  60 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        SprocketConditionals.h
  3.  
  4.     Contains:    Defines used to control what capabilities are built
  5.  
  6.     Written by: Dave Falkenburg
  7.  
  8.     Copyright:    © 1994 by Dave Falkenburg, all rights reserved.
  9.  
  10.     Change History (most recent first):
  11.      
  12.          <1>    11/12/94    DRF        First checked in.
  13.          <3>      9/9/94    DRF        Conditionalize AOCE support. Assume just a base system for now.
  14.          <2>      9/1/94    DRF        We only run under System 7.0 or later. NOTE: This typically
  15.                                     requires rebuilding precompiled headers.
  16.  */
  17.  
  18. #ifndef    _BUILDCONDITIONALS_
  19. #define    _BUILDCONDITIONALS_
  20.  
  21. #define SystemSevenFiveOrLater        0    // For the moment
  22. #define    SystemSevenOrLater            1
  23.  
  24. #define STRICT_CONTROLS             0
  25. #define STRICT_WINDOWS                 0
  26. #define STRICT_MENUS                 1
  27.  
  28. #define OLDROUTINENAMES                0    // We're up-to-date
  29. #define OLDROUTINELOCATIONS            0
  30. #define CGLUESUPPORTED                0
  31.  
  32. #ifndef    qDebug
  33. #define    qDebug                        0
  34. #endif
  35.  
  36. #ifndef    qAOCEAware
  37. #define    qAOCEAware                    0
  38. #endif
  39.  
  40. #ifndef    qUseQuickDrawGX
  41. #define    qUseQuickDrawGX                0
  42. #define    qRequireDrawGX                0
  43. #define    qUseQuickDrawGXDebugging    0
  44. #endif
  45.  
  46. #ifndef    qRequireThreadManager
  47. #define    qRequireThreadManager        0
  48. #endif
  49.  
  50. #ifndef    qInlineInputAware
  51. #define    qInlineInputAware            0
  52. #endif
  53.  
  54. //#if    qUseQuickDrawGX
  55. //    Tell QuickDrawGX that we use universal headers
  56. //#define    ppcinterfaces        1
  57. //#endif
  58.  
  59. #endif
  60.